home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2888 / 2888.xpi / content / quicksearch.xul < prev    next >
Extensible Markup Language  |  2008-06-28  |  2KB  |  44 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://gmarks/skin/style.css" type="text/css"?>
  3.  
  4. <!DOCTYPE window SYSTEM "chrome://gmarks/locale/gmarks.dtd">
  5.  
  6. <window id="gmarksQuickSearch" hidechrome="true" titlebar="no" title="Quick Search"
  7.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  8.     <script type="application/x-javascript" src="chrome://gmarks/content/quicksearch.js"/>
  9.     <script type="application/x-javascript" src="chrome://browser/content/utilityOverlay.js"/>
  10.  
  11.      <popupset>
  12.         <popup id="gmqsResults"
  13.             ignorekeys="true"
  14.             position="after_start"
  15.             class="gmqsPopup"
  16.             width="440"
  17.             />
  18.         <tooltip id="gmqsTooltip" orient="vertical"
  19.                 crop="end"    maxWidth="500" style="max-width: 500px;"
  20.                 onpopupshown="onTooltipShowing(event);"
  21.                 onpopuphidden="onTooltipHidden(event);"/>
  22.     </popupset>
  23.     <groupbox class="gmarksQuickSearch">
  24.          <vbox align="center">
  25.              <hbox flex="1" style="width: 400px; margin-left: 20px; margin-right: 20px;">
  26.                  <label id="qSearchLabel" value="&qSearch.info;"/>
  27.                  <hbox align="right" flex="1">
  28.                      <label value="x" onclick="doGMQSUnload();"/>
  29.                  </hbox>
  30.              </hbox>
  31.              <stack flex="1">
  32.                 <textbox id="gmarks-txtQuickSearch" value="" style="width: 400px; height: 30px;" flex="1"
  33.                     onkeypress="handleKeypress(event);"
  34.                     type="timed" timeout="500"
  35.                     oncommand="doQuickSearchBookmarks();"
  36.                     />
  37.                 <image id="statusImg" src="chrome://browser/skin/Throbber.gif" hidden="true"
  38.                      left="380" top="7"
  39.                      />
  40.                  <!--style="padding-left: 375px; padding-top: 4px; height: 8px; width: 8px; max-height: 8px; max-width: 8px;"-->
  41.             </stack>
  42.         </vbox>
  43.     </groupbox>
  44. </window>